home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / amos / amoslist.lzh / AMOSLIST / 000122_amos-request@svcs1.digex.net_Thu Sep 7 14:12:54 1995.msg < prev    next >
Internet Message Format  |  1995-10-02  |  2KB

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224]) by mail1.access.digex.net (8.6.12/8.6.12) with ESMTP id OAA26198;  for <mcox@access.digex.net> ; Thu, 7 Sep 1995 14:12:53 -0400
  2. Received: (from daemon@localhost) by svcs1.digex.net (8.6.12/8.6.12) id LAA12249 for amos-out; Thu, 7 Sep 1995 11:55:54 -0400
  3. Received: from mail1.access.digex.net (mail1.access.digex.net [205.197.247.2]) by svcs1.digex.net (8.6.12/8.6.12) with ESMTP id LAA12246 for <amos-list@svcs1.digex.net>; Thu, 7 Sep 1995 11:55:52 -0400
  4. Received: from disperse.demon.co.uk (disperse.demon.co.uk [158.152.1.77]) by mail1.access.digex.net (8.6.12/8.6.12) with SMTP id LAA07205;  for <amos-list@access.digex.net> ; Thu, 7 Sep 1995 11:55:49 -0400
  5. Received: from post.demon.co.uk by disperse.demon.co.uk id aa09461;
  6.           7 Sep 95 15:44 +0100
  7. Received: from westmead.demon.co.uk by post.demon.co.uk id aa29285;
  8.           7 Sep 95 15:42 +0100
  9. From: Mark Carter <Mark@westmead.demon.co.uk>
  10. To: amos-list@access.digex.net
  11. Date:          Thu, 7 Sep 1995 15:44:22 +0000
  12. Subject:       Bugs in Interface Language
  13. Reply-to: amos-list@access.digex.net
  14. Priority: normal
  15. X-mailer: Pegasus Mail/Windows (v1.22)
  16. Message-ID:  <9509071542.aa29285@post.demon.co.uk>
  17. Status: RO
  18. X-Status: 
  19.  
  20. There's a very annoying bug that seems to randomly surface every now 
  21. and then with the amospro interface language:
  22.  
  23. It happens when I use a command like "Vdialog$(1,10)=NAME$" from 
  24. within the Basic program and then try to print 10VA from within the 
  25. interface program. Very occasionally instead of NAME$ being printed, 
  26. I just get a long line of "junk" characters. On closer inspection I 
  27. found that the contents of Vdialog$(1,10) contained these "junk" 
  28. characters directly after the "Vdialog$(1,10)=..." Basic command. 
  29. Therefore, the problem lies with this command and not specifically 
  30. the interface language. The only way I can get round this problem is 
  31. by doing something like...
  32.  
  33. Repeat
  34.    Vdialog$(1,10)=NAME$
  35. Until Vdialog$(1,10)=NAME$
  36.  
  37. ...which is far from ideal.
  38. I often find that using this method means that all the other 
  39. Vdialog$(1,?)=... commands carried out afterwards for that channel 
  40. work perfectly (there is no need to do it for every string - phew!).
  41.  
  42. I would like to hear if anyone alse has had this problem and maybe 
  43. found a neater way to get round it.
  44.  
  45. Cheers,
  46.  
  47. Mark